home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / zipmgr11.zip / SETUP.BAT < prev    next >
DOS Batch File  |  1993-01-11  |  840b  |  26 lines

  1. ECHO OFF
  2. CLS
  3. ECHO ZIPMGR V1 - Initial SETUP batch file.
  4. ECHO Provided by Marshall H. Goodman Software Ltd.
  5. ECHO '
  6. ECHO Batch File syntax: SETUP driveletter
  7. ECHO '           where: 'driveletter' is the drive where the \WINDOWS
  8. ECHO '                  sub-directory is located.
  9. ECHO '   'driveletter' format: C:
  10. ECHO '
  11. ECHO This batch file will copy SETUPKIT.DLL to your
  12. ECHO '%1'\WINDOWS sub-directory.
  13. ECHO '
  14. IF "%1" == "" GOTO NODRIVE
  15. IF NOT EXIST %1\WINDOWS\*.* GOTO PATHNO
  16. IF NOT EXIST %1\WINDOWS\SETUPKIT.DLL COPY SETUPKIT.DLL %1\WINDOWS
  17. ERASE SETUPKIT.DLL
  18. ECHO Copying complete.  You can now enter Windows and run ZMSETUP.EXE.
  19. GOTO FINAL
  20. :PATHNO
  21. ECHO The sub-directory %1\WINDOWS does not on this drive.  SETUP Cancelled.
  22. GOTO FINAL
  23. :NODRIVE
  24. ECHO You have not specified a driveletter.  SETUP cancelled.
  25. :FINAL
  26.